home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual Foxpro 6.0 (Ent. Edition) / Vf6ent Extractor.EXE / TOOLS / XSOURCE / XSOURCE.ZIP / vfpsource / Builders / readme.txt < prev    next >
Encoding:
Text File  |  1998-05-01  |  2.8 KB  |  66 lines

  1. Directory:         ..\XBASESLM\WIZAPP
  2.  
  3. Author:         John Alden
  4. emailname:        v-johnal
  5. Creation Date:    11/4/94
  6.  
  7.  
  8. Description:    This is the main project directory for WIZARD.APP and BUILDER.APP.
  9.  
  10. Files:            BUILDER.PJX/.PJT  - Builder project files
  11.                 WIZARD.PJX/.PJT   - Wizard project files
  12.                 
  13.                 WBPICK.VCX/.VCT      - Class library for wizard/builder picklists and certain error dialogs
  14.                 
  15.                 WB.H              - Common header file for both .apps
  16.  
  17.                 WBMAIN.PRG          - Main program library, common to both .apps. This is what locates/builds the 
  18.                                     registration tables, updates FOXUSER for preferences, and does other housekeeping 
  19.                                     chores for both wizard.app and builder.app. It reads the reg table, offers a
  20.                                     picklist if necessary, calls the wizard or builder either as an app or by creating
  21.                                     an object, responds to certain key parameters, passes along any other params to the
  22.                                     individual wizard or builder, and can return a value to the calling program (e.g.,
  23.                                     the Project Manager).
  24.                 WIZARD.PRG          -    Main program in wizard.app
  25.                 BUILDER.PRG          -    Main program in builder.app
  26.                 WBGRID.PRG          - Used by builders, to dynamically create a grid with code for resize and
  27.                                     double-click events at the column level. This is handled this way because certain 
  28.                                     builders offer grids in which users may dynamically add additional columns. These
  29.                                     new columns, created at runtime, need to inherit common code for resize/dblclick 
  30.                                     events, so the grid and any columns are defined via this .prg.
  31.                 DUMMY.PRG          - Dummy program to prevent certain errors when building projects
  32.                 
  33.                 WREGTBL.DBF/.FPT  - Wizard registration table template. The default reg table is built from this; it
  34.                                     has an additional field (PLATFORM) in anticipation of future support for  other 
  35.                                     platforms.
  36.                 BREGTBL.DBF/.FPT  - Same as above, but for builders.
  37.                 
  38.                                     
  39.                                     
  40.                 
  41.                 BLDLIST.H    }
  42.                 BLDCOMBO.H    } header files for individual builders
  43.                 BLDFORM.H    }
  44.                 
  45.                 CMBBDCMB.BMP }
  46.                 CMBBDLST.BMP } bitmap files for individual builders
  47.                 FRMBHZ1.BMP  }
  48.                 FRMBVT1.BMP  }
  49.                 
  50. Dependencies:    ..\WIZAPP\BUILDER.PJX/.PJT - builder project files; BUILDER.APP is built from these
  51.                 ..\WZCOMMON\WIZCTRL.VCX    - common wizard/builder control class library
  52.                 ..\WZFORM\WIZSTYLES.VCX    - form builder styles library
  53.                 
  54. Distribution:    The files here are embedded into BUILDER.APP and will not be distributed to target machines.
  55.  
  56.  
  57. Class listing:    WBPICK.VCX
  58. --------------    -----------
  59.         Class:    WBPick
  60.   Description:    Picklist for wizards and builders.
  61.  
  62.         Class:  WBLocate
  63.   Description:    Dialog handling case of missing reg table. The required custom prompts for
  64.                   the commandbuttons (Locate/Create/Cancel), so we couldn't use MessageBox().
  65.  
  66.